home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / renaisnc / rcnstrct.lha / Reconstruct / Makefile < prev    next >
Encoding:
Makefile  |  1992-01-04  |  492 b   |  27 lines

  1. #
  2. #  This makefile works for building on june
  3. #
  4. HOME = ../..
  5. WFF = ${HOME}/wff
  6.  
  7. # Add -DBINARY to accept input in binary instead of ascii
  8.  
  9. CFLAGS =  -O -I$(WFF)/include -DTRUE=1 -DFALSE=0 -DREAL=double 
  10.  
  11.  
  12. RENAISSANCE = ..
  13. LIBS = $(RENAISSANCE)/Lib/libgraphics.a \
  14.        $(RENAISSANCE)/Chaucer/interpreter.a \
  15.      -ll -lm
  16.  
  17. WFF.O = $(WFF)/bin/wff.o
  18.  
  19. OBJ = Cdf.o CubicFilter.o null.o \
  20.     ${WFF.O} 
  21.  
  22. Reconstruct: Reconstruct.o ${OBJ}
  23.     ${CC} ${CFLAGS} -o Reconstruct Reconstruct.o ${OBJ} ${LIBS}
  24.  
  25.  
  26.  
  27.